home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE19 / TIPTRIX / LISTING6.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1997-02-18  |  433 b   |  19 lines

  1. procedure TForm1.ButtonPostClick(Sender: TObject);
  2. begin
  3.  try
  4.     Table1.Post;                      {try to Post}
  5.  
  6. {we did not get to the BeforePost event handler before the error occurred}
  7.  except on EDatabaseError do begin
  8.  
  9.     if DBEdit1.Text = ''        {our recovery code}
  10.       then begin
  11.         ShowMessage('This Field cannot be left blank');
  12.         DBEdit1.SetFocus;
  13.         Abort;
  14.         end;
  15.       end;
  16.   end;
  17. end;
  18.  
  19.